Shared coding conventions allow teams to collaborate effectively. This rule flags all Perl-style comments.
Noncompliant code example
$myvar; # Noncompliant; this comment should have started with "//"
Compliant solution
$myvar; // Compliant; this comment started with "//"